.btn-big {
    display: inline-block;
    padding: 22rem 36rem;
    font-size: 22rem;
    font-weight: 500;
    border-radius: 100rem;
   	text-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.0) !important;
   	border: 0rem;
	transition: 0.2s;
	text-align: center !important;
}

.btn-medium {
    display: inline-block;
    padding: 14rem 24rem;
    font-size: 15rem;
    font-weight: 500;
    border-radius: 100rem;
   	text-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.0) !important;
   	border: 0rem;
	transition: 0.2s;
	text-align: center !important;
}

.btn-small {
    display: inline-block;
    padding: 8rem 14rem;
    font-size: 15rem;
    font-weight: 500;
    border-radius: 100rem;
   	text-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.0) !important;
   	border: 0rem;
	transition: 0.2s;
	text-align: center !important;
}

.btn-red {    
	background: linear-gradient(to right, #af2727, #560a0a);
	background-position: center left;
	background-size: 150%;
	color: white;
}
	.btn-red:hover {
		background-position: center right -3rem;
		color: white;
	}

.btn-purple {
	background: linear-gradient(to right, #a7618a, #443754);
	background-position: center left;
	background-size: 150%;
	color: white;
}
	.btn-purple:hover {
		background-position: center right -3rem;
		color: white;
	}

.btn-pink {
	background: linear-gradient(to right, #ec60bb, #751a3f);
	background-position: center left;
	background-size: 150%;
	color: white;
}
	.btn-pink:hover {
		background-position: center right -3rem;
		color: white;
	}

.btn-green {
	background: linear-gradient(to right, #67e78e, #3f9b64);
	background-position: center left;
	background-size: 150%;
	color: white;
}
	.btn-green:hover {
		background-position: center right -3rem;
		color: white;
	}

.btn-white {
	color: black !important;
	background-color: white;
}

.btn-white-inset {
	box-shadow: inset 0rem 0rem 0rem 2rem white;
	color: white;
}
	.btn-white-inset:hover {
		background-color: #ffffff4d;
	}

.btn-inactive {
	background: gray !important;
	background-color: gray !important;
    pointer-events: none;
}

.btn-bottom-center {
	position: absolute;
	bottom: 50rem;
	left: 50%;
	transform: translateX(-50%);

	box-shadow: 0rem 0rem 40rem rgba(0, 0, 0, 0.5);
}

.central-btns-block {
	display: table;
	position: absolute;
	bottom: 50rem;
	left: 50%;
	transform: translateX(-50%);
}
	.central-btns-block span {
		margin-left: 5rem;
		margin-right: 5rem;
	}

.vertical-btns-block {
	margin-bottom: 35rem;
	color: white;
}
	.vertical-btns-block:last-child {
		margin-bottom: 0rem;
	}

.vertical-btns-block .btn-medium,
.vertical-btns-block input {
	border-radius: 0rem;
	display: block;
	margin-bottom: 3rem;
	box-shadow: 0rem 0rem 10rem rgba(0, 0, 0, 0.2);
}
	.vertical-btns-block .btn-medium:first-child {
		border-radius: 21rem 21rem 0rem 0rem;
	}
	.vertical-btns-block .btn-medium:last-child {
		border-radius: 0rem 0rem 21rem 21rem;
	}


.horizontal-btns-block {
	text-align: center;
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 1rem;
}
	.horizontal-btns-block span {
		border-radius: 0rem;
		margin: 1rem;
		display: table-cell;
	}
		.horizontal-btns-block span:first-child {
			border-radius: 100rem 0rem 0rem 100rem;
		}
		.horizontal-btns-block span:last-child {
			border-radius: 0rem 100rem 100rem 0rem;
		}



.hide-scroll::-webkit-scrollbar-thumb {
	background: none;
} 
	.hide-scroll::-webkit-scrollbar {
		width: 0rem;
	}

.shadow-text {
	text-shadow: 2rem 2rem 4rem rgba(0, 0, 0, 0.45);
}

.blur-box {
	filter: blur(5rem);
    pointer-events: none;
}